高级特性: 使用 MDX 您所在的位置:网站首页 nextconfigjs 为静态资源添加路径前缀并支持发布到 CDN 高级特性: 使用 MDX

高级特性: 使用 MDX

2024-05-20 23:46| 来源: 网络整理| 查看: 265

Using MDX with Next.js

MDX is a superset of markdown that lets you write JSX directly in your markdown files. It is a powerful way to add dynamic interactivity, and embed components within your content, helping you to bring your pages to life.

Next.js supports MDX through a number of different means, this page will outline some of the ways you can begin integrating MDX into your Next.js project.

Why use MDX?

Authoring in markdown is an intuitive way to write content, its terse syntax, once adopted, can enable you to write content that is both readable and maintainable. Because you can use HTML elements in your markdown, you can also get creative when styling your markdown pages.

However, because markdown is essentially static content, you can't create dynamic content based on user interactivity. Where MDX shines is in its ability to let you create and use your React components directly in the markup. This opens up a wide range of possibilities when composing your sites pages with interactivity in mind.

MDX Plugins

Internally MDX uses remark and rehype. Remark is a markdown processor powered by a plugins ecosystem. This plugin ecosystem lets you parse code, transform HTML elements, change syntax, extract frontmatter, and more.

Rehype is an HTML processor, also powered by a plugin ecosystem. Similar to remark, these plugins let you manipulate, sanitize, compile and configure all types of data, elements and content.

To use a plugin from either remark or rehype, you will need to add it to the MDX packages config.

@next/mdx

The @next/mdx package is configured in the next.config.js file at your projects root. It sources data from local files, allowing you to create pages with a .mdx extension, directly in your /pages directory.

Setup @next/mdx in Next.js

The following steps outline how to setup @next/mdx in your Next.js project:

Install the required packages:

npm install @next/mdx @mdx-js/loader

Require the package and configure to support top level .mdx pages. The following adds the options object key allowing you to pass in any plugins:

// next.config.js const withMDX = require('@next/mdx')({ extension: /\.mdx?$/, options: { remarkPlugins: [], rehypePlugins: [], }, }) module.exports = withMDX({ pageExtensions: ['js', 'jsx', 'md', 'mdx'], })

Create a new MDX page within the /pages directory:

- /pages - my-mdx-page.mdx - package.json Using Components, Layouts and Custom Elements

You can now import a React component directly inside your MDX page:

import { MyComponent } from 'my-components' # My MDX page This is a list in markdown: - One - Two - Three Checkout my React component: Frontmatter

Frontmatter is a YAML like key/value pairing that can be used to store data about a page. @next/mdx does not support frontmatter by default, though there are many solutions for adding frontmatter to your MDX content, such as gray-matter.

To access page metadata with @next/mdx, you can export a meta object from within the .mdx file:

export const meta = { author: 'Rich Haines' } # My MDX page Layouts

To add a layout to your MDX page, create a new component and import it into the MDX page. Then you can wrap the MDX page with your layout component:

import { MyComponent, MyLayoutComponent } from 'my-components' export const meta = { author: 'Rich Haines' } # My MDX Page with a Layout This is a list in markdown: - One - Two - Three Checkout my React component: export default = ({ children }) => {children} Custom Elements

One of the pleasant aspects of using markdown, is that it maps to native HTML elements, making writing fast, and intuitive:

# H1 heading ## H2 heading This is a list in markdown: - One - Two - Three

The above generates the following HTML:

H1 heading H2 heading This is a list in markdown: One Two Three

When you want to style your own elements to give a custom feel to your website or application, you can pass in shortcodes. These are your own custom components that map to HTML elements. To do this you use the MDXProvider and pass a components object as a prop. Each object key in the components object maps to a HTML element name.

// pages/index.js import { MDXProvider } from '@mdx-js/react' import Image from 'next/image' import { Heading, Text, Pre, Code, Table } from 'my-components' const ResponsiveImage = (props) => ( ) const components = { img: ResponsiveImage, h1: Heading.H1, h2: Heading.H2, p: Text, code: Pre, inlineCode: Code, } export default function Post(props) { return ( ) } Helpful Links MDX @next/mdx remark rehype


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有